home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2004 #9
/
Amiga Plus CD - 2004 - No. 09.iso
/
amigaplus
/
tools
/
amigaos4_only
/
ifxlite
/
imagefx3
/
rexx
/
postredraw.ifx
< prev
next >
Wrap
Text File
|
2004-08-03
|
515b
|
26 lines
/*
* $VER: PostRedraw 1.00.00 (24.9.92)
*
* Arexx program for the ImageFX image processing system.
* Written by Thomas Krehbiel
*
* This program is called after ImageFX redraws the screen; this allows
* you to add a hook to update another display automatically. You must
* first call "SetPrefs AutoRender On" before this will actually be
* used.
*
*/
PARSE ARG left top width height .
OPTIONS RESULTS
IF ARG() > 0 THEN DO
Render Area left top width height
END
ELSE DO
Render Go
END
EXIT